home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / graphics / coerce.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  666b  |  35 lines

  1. #ifndef GRAPHICS_COERCE_H
  2. #define GRAPHICS_COERCE_H 1
  3. /*
  4. ** coerce.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/01/95
  11. **
  12. **
  13. */
  14.  
  15.  
  16. /* These flags are passed (in combination) to CoerceMode() to determine the
  17.  * type of coercion required.
  18.  */
  19.  
  20. /* Ensure that the mode coerced to can display just as many colours as the
  21.  * ViewPort being coerced.
  22.  */
  23. #define PRESERVE_COLORS 1
  24.  
  25. /* Ensure that the mode coerced to is not interlaced. */
  26. #define AVOID_FLICKER 2
  27.  
  28. /* Coercion should ignore monitor compatibility issues. */
  29. #define IGNORE_MCOMPAT 4
  30.  
  31.  
  32. #define BIDTAG_COERCE 1 /* Private */
  33.  
  34. #endif
  35.